home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
src
/
gethostname.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-10-08
|
217b
|
14 lines
#include "amiga.h"
#include <unistd.h>
extern char *_system_name;
char *strncpy(char *, const char *, size_t);
long gethostname(unsigned char *buf, long len)
{
strncpy(buf, _system_name, len);
return 0;
}